home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Shareware Grab Bag
/
Shareware Grab Bag.iso
/
050
/
madtrb7.arc
/
BLIST.DOC
< prev
next >
Wrap
Text File
|
1985-12-01
|
898b
|
23 lines
BLIST.DOC
BList is a Turbo Pascal Source Code lister and BEGIN/END Counter
program. It can print a listing to Console or Printer, with
optional begin/end, case/end, and record/end counter. It was
initially published in the Aug./Sept. issue of TUG Lines.
This version of the code is specific to CP/M-80 because the program
looks for a parameter passed by CP/M at absolute location $80.
However, I believe it can be easily modified for MS-DOS. The
program PARAMS.PAS (published in Jun./July issue of TUG Lines)
implies that only a few declarations need to be changed in the
BLIST.PAS program. The following declarations should be changed
in the GET_IN_FILE procedure:
Var FNam: String[14];
Parm: String[14] Absolute CSeg:$0081;
ParmLth: Byte Absolute CSeg:$0080;
Existing: Boolean;
---X---
BLIST.PAS program will not compile under DOS - Turbo Pascal 3.01a.